home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / include / qremotefactory.h.z / qremotefactory.h
C/C++ Source or Header  |  2002-04-08  |  378b  |  25 lines

  1. #ifndef QREMOTEFACTORY_H
  2. #define QREMOTEFACTORY_H
  3.  
  4. #ifndef QT_H
  5. #include "qstringlist.h"
  6. #endif // QT_H
  7.  
  8. #ifndef QT_NO_REMOTE
  9.  
  10. class QString;
  11. class QRemoteInterface;
  12.  
  13. class Q_EXPORT QRemoteFactory
  14. {
  15. public:
  16. #ifndef QT_NO_STRINGLIST
  17.     static QStringList keys();
  18. #endif
  19.     static QRemoteInterface *create( const QString& );
  20. };
  21.  
  22. #endif //QT_NO_REMOTE
  23.  
  24. #endif //QREMOTEFACTORY_H
  25.